05. Quiz: 99 Bottles of Juice (4-2)

Directions:

Write a loop that prints out the following song. Starting at 99, and ending at 1 bottle.

99 bottles of juice on the wall! 99 bottles of juice! Take one down, pass it around... 98 bottles of juice on the wall!
98 bottles of juice on the wall! 98 bottles of juice! Take one down, pass it around... 97 bottles of juice on the wall!
...
2 bottles of juice on the wall! 2 bottles of juice! Take one down, pass it around... 1 bottle of juice on the wall!
1 bottle of juice on the wall! 1 bottle of juice! Take one down, pass it around... 0 bottles of juice on the wall!

Some Notes:

  1. Note the pluralization of the word "bottle" when you go from 2 bottles to 1 bottle.
  2. Your text editor may try to autocorrect your ellipses (...) to the ellipses character (). Do not use the ellipses character for this quiz; use three consecutive periods instead.

Your Code:

Start Quiz:

/*
 * Programming Quiz: 99 Bottles of Juice (4-2)
 *
 * Use the following `while` loop to write out the song "99 bottles of juice".
 * Log the your lyrics to the console.
 *
 * Note
 *   - Each line of the lyrics needs to be logged to the same line.
 *   - The pluralization of the word "bottle" changes from "2 bottles" to "1 bottle" to "0 bottles".
 */

var num = 99;

while (/* your stop condition goes here */) {
    // check value of num
    // print lyrics using num
    // don't forget to check pluralization on the last line!
    // decrement num
}

INSTRUCTOR NOTE:

Have questions? Head to Knowledge for discussion with the Udacity Community.